how to create list from a to z in python

114

how to create list from a to z in python -

>>> import string
>>> string.ascii_lowercase[:14]
'abcdefghijklmn'
>>> string.ascii_lowercase[:14:2]
'acegikm'

Comments

Submit
0 Comments